home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Modules / win / winedit.py next >
Text File  |  1995-11-15  |  2KB  |  99 lines

  1. # These are inline-routines/defines, so we do them "by hand"
  2. #
  3.  
  4. f = Method(CGrafPtr, 'GetWindowPort',
  5.     (WindowRef, 'theWindow', InMode),
  6. )
  7. methods.append(f)
  8.  
  9. f = Method(void, 'SetPortWindowPort',
  10.     (WindowRef, 'theWindow', InMode),
  11. )
  12. methods.append(f)
  13.  
  14. f = Method(short, 'GetWindowKind',
  15.     (WindowRef, 'theWindow', InMode),
  16. )
  17. methods.append(f)
  18.  
  19. f = Method(void, 'SetWindowKind',
  20.     (WindowRef, 'theWindow', InMode),
  21.     (short, 'wKind', InMode),
  22. )
  23. methods.append(f)
  24.  
  25.  
  26. f = Method(Boolean, 'IsWindowVisible',
  27.     (WindowRef, 'theWindow', InMode),
  28. )
  29. methods.append(f)
  30.  
  31. f = Method(Boolean, 'IsWindowHilited',
  32.     (WindowRef, 'theWindow', InMode),
  33. )
  34. methods.append(f)
  35.  
  36. f = Method(Boolean, 'GetWindowGoAwayFlag',
  37.     (WindowRef, 'theWindow', InMode),
  38. )
  39. methods.append(f)
  40.  
  41. f = Method(Boolean, 'GetWindowZoomFlag',
  42.     (WindowRef, 'theWindow', InMode),
  43. )
  44. methods.append(f)
  45.  
  46. f = Method(void, 'GetWindowStructureRgn',
  47.     (WindowRef, 'theWindow', InMode),
  48.     (RgnHandle, 'r', InMode),
  49. )
  50. methods.append(f)
  51.  
  52. f = Method(void, 'GetWindowContentRgn',
  53.     (WindowRef, 'theWindow', InMode),
  54.     (RgnHandle, 'r', InMode),
  55. )
  56. methods.append(f)
  57.  
  58. f = Method(void, 'GetWindowUpdateRgn',
  59.     (WindowRef, 'theWindow', InMode),
  60.     (RgnHandle, 'r', InMode),
  61. )
  62. methods.append(f)
  63.  
  64. f = Method(short, 'GetWindowTitleWidth',
  65.     (WindowRef, 'theWindow', InMode),
  66. )
  67. methods.append(f)
  68.  
  69. f = Method(ExistingWindowPtr, 'GetNextWindow',
  70.     (WindowRef, 'theWindow', InMode),
  71. )
  72. methods.append(f)
  73.  
  74. f = Method(void, 'GetWindowStandardState',
  75.     (WindowRef, 'theWindow', InMode),
  76.     (Rect, 'r', OutMode),
  77. )
  78. methods.append(f)
  79.  
  80. f = Method(void, 'GetWindowUserState',
  81.     (WindowRef, 'theWindow', InMode),
  82.     (Rect, 'r', OutMode),
  83. )
  84. methods.append(f)
  85.  
  86.  
  87. f = Method(void, 'SetWindowStandardState',
  88.     (WindowRef, 'theWindow', InMode),
  89.     (Rect, 'r', InMode),
  90. )
  91. methods.append(f)
  92.  
  93. f = Method(void, 'SetWindowUserState',
  94.     (WindowRef, 'theWindow', InMode),
  95.     (Rect, 'r', InMode),
  96. )
  97. methods.append(f)
  98.  
  99.